home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 7 / Apprentice-Release7.iso / Demos / Component Software / FileFlex 2.0.3.sit / FileFlex 2.0.3 / Unsupported & Undocumented / Char Translation Example / 00003.ls < prev    next >
Encoding:
Text File  |  1996-04-10  |  391 b   |  16 lines

  1. on mouseUp
  2.   global CaseReverseX
  3.   set dbResult to DBOpenSession()
  4.   if dbResult < 0 then
  5.     alert("FileFlex could not initialize!")
  6.     exit
  7.   end if
  8.   buildTranslateTable_CaseReverseX()
  9.   put DBTranslateChars(field "text data", CaseReverseX) into field "text data"
  10.   set dbResult to DBCloseSession()
  11.   if dbResult < 0 then
  12.     alert("FileFlex could not terminate!")
  13.     exit
  14.   end if
  15. end
  16.